home *** CD-ROM | disk | FTP | other *** search
- <SCRIPT>
-
- function WriteMonthX()
- {
- document.writeln(L_WhereX);
- document.writeln('<SELECT class="menuFormElement" NAME="Day3">');
- document.writeln('<OPTION VALUE="0" SELECTED>' + L_Monday);
- document.writeln('<OPTION VALUE="1">' + L_Tuesday);
- document.writeln('<OPTION VALUE="2">' + L_Wednesday);
- document.writeln('<OPTION VALUE="3">' + L_Thursday);
- document.writeln('<OPTION VALUE="4">' + L_Friday);
- document.writeln('<OPTION VALUE="5">' + L_Saturday);
- document.writeln('<OPTION VALUE="6">' + L_Sunday);
- document.writeln('</SELECT>');
- }
-
- function WriteMonthN()
- {
- document.writeln(L_WhereN);
- document.writeln('<SELECT class="menuFormElement" NAME="Day2">');
- document.writeln('<OPTION VALUE="1">' + L_First);
- document.writeln('<OPTION VALUE="2">' + L_Second);
- document.writeln('<OPTION VALUE="3">' + L_Third);
- document.writeln('<OPTION VALUE="4">' + L_Fourth);
- document.writeln('<OPTION SELECTED VALUE="5">' + L_Fifth);
- document.writeln('</SELECT>');
- }
-
- document.writeln('<table width="100%"><tr><td class="list">');
-
-
- WriteMonthN();
- document.writeln('</td><td class="list">');
- WriteMonthX();
-
-
- document.writeln('</td></tr></table>');
-
- </SCRIPT>
-